﻿body {
    background-image: url("images/fujifilm.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.login-header {
    background-color: rgba(167,77,77);
    margin-bottom: -1px;
    color: rgba(255,255,255);
    padding: 5px;
    border-radius: 10px 10px 0px 0px;
}

.login-header h1 {
    font-size: 40px;
    margin-top: auto;
    margin-bottom: auto;
}

.login-subheader {
    padding: 10px;
    background-color: rgba(77,77,77);
    margin-top: 0px;
    color: rgba(255,255,255);
}

.login-subheader h5 {
    font-size: 20px;
    font-weight: 300;
    margin-top: auto;
    margin-bottom: auto;
}

.login-body {
    position: relative;
    border: 5px solid rgba(77,77,77);
    background-color: rgba(255,255,255);
    padding: 15px;
    margin-top: -5px;
    color: rgba(77,77,77);
    background-clip: padding-box;
    z-index: 2;
}

.login-body h5 {
    font-weight: 400;
}

.login-footer {
    background-color: rgba(167,77,77);
    color: rgba(167,77,77);
    font-size: 40px;
    margin-top: -1px;
    z-index: 1;
    border-radius: 0px 0px 10px 10px;
}

.textbox {
    display: block;
    border: 1px solid rgba(77,77,77);
    transition: 0.2s;
    border-radius: 10px !important;
    box-shadow: 0px 0px;
}

.textbox:focus {
    transform: scale(1.02,1.02);
}

#agrmnt {
    display: block;
    background-color: rgb(47 147 47);
    border-radius: 10px;
    color: rgba(255,255,255);
    width: fit-content;
    padding: 10px;
    box-shadow: 0px 0px rgba(45,45,45);
    transition: 0.2s;
    text-decoration: none;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

#agrmnt h5 {
    margin: 0px;
}

#agrmnt:hover {
    transform: scale(1.02,1.02);
    box-shadow: 5px 5px 7px rgba(45,45,45);
}

.loginbutton {
    width: fit-content;
    background-color: rgba(47,107,167);
    color: rgba(255,255,255);
    font-weight: 400;
    display: block;
    border: none;
    border-radius: 10px;
    margin: auto;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0px 0px rgba(45,45,45);
    transition: 0.2s;
    font-size: 20px;
}

.loginbutton:hover {
    transform: scale(1.02, 1.02);
    box-shadow: 5px 5px 7px rgba(45,45,45);
}

#cb_agreement h5 {
    font-size: 20px;
    font-weight: 400;
    margin: 0px;
}

.cbCheckbox input {
    height: 15px;
    width: 15px;
}

#lbl_login_message {
    color: rgba(167,77,77);
    margin: auto;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    max-height: 100%;
    box-shadow: -7px 7px 17px rgb(0 0 0 / 30%), 7px 7px 17px rgb(0 0 0 / 37%);
}

.login-username, .login-password, .login-company {
    margin-top: 5px;
}

@media all and (max-width: 550px) {
    .login-header {
        border-radius: 0px;
    }

    .login-footer {
        border-radius: 0px;
    }

    .center {
        border-radius: 0px;
    }
}